home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / httrack.h < prev    next >
C/C++ Source or Header  |  2002-07-09  |  3KB  |  108 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsshow.c console progress info                        */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #ifndef HTSTOOLS_DEFH
  38. #define HTSTOOLS_DEFH 
  39.  
  40. #if HTS_ANALYSTE_CONSOLE
  41.  
  42. #include "htsglobal.h"
  43. #include "htscore.h"
  44.  
  45. typedef struct {
  46.   char name[1000];
  47.   char file[256];
  48.   char state[20];
  49.   char url_sav[HTS_URLMAXSIZE*2];    // pour cancel
  50.   char url_adr[HTS_URLMAXSIZE*2];
  51.   char url_fil[HTS_URLMAXSIZE*2];
  52.   LLint size;
  53.   LLint sizetot;
  54.   int offset;
  55.   //
  56.   int back;
  57.   //
  58.   int actived;    // pour disabled
  59. } t_StatsBuffer;
  60.  
  61. typedef struct {
  62.   int ask_refresh;
  63.   int refresh;
  64.   LLint stat_bytes;
  65.   int stat_time;
  66.   int lien_n;
  67.   int lien_tot;
  68.   int stat_nsocket;
  69.   int rate;
  70.   int irate;
  71.   int ft;
  72.   LLint stat_written;
  73.   int stat_updated;
  74.   int stat_errors;
  75.   int stat_warnings;
  76.   int stat_infos;
  77.   TStamp stat_timestart;
  78.   int stat_back;
  79. } t_InpInfo;
  80.  
  81. // wrappers
  82. void  __cdecl htsshow_init(void);
  83. void  __cdecl htsshow_uninit(void);
  84. int   __cdecl htsshow_start(httrackp* opt);
  85. int   __cdecl htsshow_chopt(httrackp* opt);
  86. int   __cdecl htsshow_end(void);
  87. int   __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier);
  88. int   __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time,hts_stat_struct* stats);
  89. char* __cdecl htsshow_query(char* question);
  90. char* __cdecl htsshow_query2(char* question);
  91. char* __cdecl htsshow_query3(char* question);
  92. int   __cdecl htsshow_check(char* adr,char* fil,int status);
  93. void  __cdecl htsshow_pause(char* lockfile);
  94. void  __cdecl htsshow_filesave(char* file);
  95. int   __cdecl htsshow_linkdetected(char* link);
  96. int   __cdecl htsshow_xfrstatus(lien_back* back);
  97. int   __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save);
  98.   
  99. int main(int argc, char **argv);
  100. void vt_color(int text,int back);
  101. void vt_clear(void);
  102. void vt_home(void);
  103.  
  104. #endif
  105.  
  106. #endif
  107.  
  108.